/* Resetando os estilos básicos */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}
    * {
        box-sizing: border-box;
    }
.dm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.744) 0%,
        rgba(7, 4, 4, 0.377) 45%,
        rgba(0, 0, 0, 0.174) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: none;
    border-bottom: none;
}

    .dm-header__inner {
        width: 100%;
        margin: 0;
        min-height: 64px;
        padding: 0 12px 0 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .dm-header__left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 240px;
        flex: 1;
    }

    .dm-header__brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        margin-left: 0;
        padding-left: 0;
    }

    .dm-header__brand img {
        height: 30px;
        width: auto;
        display: block;
    }

    .dm-header__center {
        display: flex;
        justify-content: center;
        flex: 2;
    }

    .dm-header__nav {
        display: flex;
        align-items: center;
        gap: 38px;
    }

    .dm-header__nav a,
    .dm-header__dropbtn {
        color: #ffffff;
        text-decoration: none;
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        font-weight: 400;
        opacity: 0.96;
        transition: color 0.25s ease, opacity 0.25s ease;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        white-space: nowrap;
    }

    .dm-header__nav a:hover,
    .dm-header__dropbtn:hover {
        color: #ff4a4a;
        opacity: 1;
    }

    .dm-header__dropdown {
        position: relative;
    }

    .dm-header__dropdown-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 190px;
        background: rgba(255,255,255,0.98);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        padding: 8px 0;
        display: none;
    }

    .dm-header__dropdown:hover .dm-header__dropdown-menu {
        display: block;
    }

    .dm-header__dropdown-menu a {
        display: block;
        color: #222;
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .dm-header__dropdown-menu a:hover {
        color: #d90000;
        background: rgba(0,0,0,0.03);
    }

    .dm-header__right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        min-width: 240px;
        flex: 1;
    }

    .dm-header__social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        width: 22px;
        height: 22px;
        opacity: 0.96;
        transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }

    .dm-header__social:hover {
        color: #ff4a4a;
        transform: translateY(-1px);
        opacity: 1;
    }

    .dm-header__lang {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        margin-left: 6px;
    }

    .dm-header__lang a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0.96;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .dm-header__lang a:hover {
        transform: scale(1.08);
        opacity: 1;
    }

    .dm-header__lang img {
        width: 15px;
        height: 15px;
        object-fit: cover;
        border-radius: 50%;
        display: block;
    }

    .dm-header__toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 22px;
        position: relative;
    }

    .dm-header__toggle span,
    .dm-header__toggle::before,
    .dm-header__toggle::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 999px;
        transition: 0.25s ease;
    }

    .dm-header__toggle span {
        top: 10px;
    }

    .dm-header__toggle::before {
        top: 2px;
    }

    .dm-header__toggle::after {
        bottom: 2px;
    }

    .dm-header-spacer {
        height: 64px;
    }

    @media (max-width: 1100px) {
        .dm-header__inner {
            min-height: 64px;
            padding: 0 12px;
        }

        .dm-header-spacer {
            height: 64px;
        }

        .dm-header__toggle {
            display: block;
        }

        .dm-header__center {
            position: absolute;
            top: 64px;
            left: 0;
            width: 100%;
            background: rgba(22,22,22,0.98);
            display: none;
            padding: 20px;
        }

        .dm-header__center.is-open {
            display: flex;
        }

        .dm-header__nav {
            width: 100%;
            flex-direction: column;
            gap: 18px;
            align-items: center;
        }

        .dm-header__dropdown-menu {
            position: static;
            transform: none;
            margin-top: 10px;
        }

        .dm-header__left,
        .dm-header__right {
            min-width: auto;
            flex: 0;
        }
    }

    @media (max-width: 768px) {
        .dm-header__brand img {
            height: 24px;
        }

        .dm-header__inner {
            min-height: 58px;
        }

        .dm-header-spacer {
            height: 58px;
        }

        .dm-header__center {
            top: 58px;
        }

        .dm-header__right {
            gap: 8px;
        }

        .dm-header__social {
            font-size: 12px;
            width: 18px;
            height: 18px;
        }

        .dm-header__lang img {
            width: 13px;
            height: 13px;
        }
    }










/* Seção principal */
.quem-somos {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  color: #fff;

}


/* Overlay escuro sobre o fundo */
.quem-somos .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

/* Container geral dividido em duas partes */
.quem-somos .content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Lado esquerdo - imagem */
.quem-somos .left {
  flex: 1;
  background: rgba(0, 0, 0, 0); /* transparente, já tem a imagem da section */
}

/* Lado direito - conteúdo centralizado */
.quem-somos .right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* Container do conteúdo */
.quem-somos .container {
  max-width: 1000px;
}




:root{
  --red1:#ff0000;
  --red2:#860e0e;
  --radius:18px;
  --shadow:0 8px 18px rgba(0,0,0,.18);
}

/* layout 60vh dividido */
.faixa-60vh{
  height:60vh;
  display:grid;
  grid-template-columns:1fr 1fr; /* esq | dir */
}

.col-dir{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:clamp(16px,3vw,32px);
}

/* conteúdo lado direito */
.conteudo{ width:min(840px,88%); text-align:center; }

.titulo{
  margin:0 0 4px;
  font:800 clamp(28px,4.8vw,64px) 'Playfair Display', serif;
  color:#ff0000;
  line-height:1;
}
.subtitulo{
  margin:0 0 35px;
  font-weight:600;
  font-size:clamp(14px,1.9vw,22px);
  color:#111;
}

/* grid dos 6 cards */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:1fr; /* alturas iguais nas linhas */
  gap:clamp(10px,1.6vw,20px);

}

/* card clicável */
.kpi-card,
.kpi-card:link,
.kpi-card:visited,
.kpi-card:hover,
.kpi-card:active,
.kpi-card:focus{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  min-height:120px; padding:14px;
  border-radius:15px;
  background:linear-gradient(180deg,var(--red1),var(--red2));
  color:#fff; text-decoration:none;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
  -webkit-tap-highlight-color:transparent;
}
.kpi-card *{ color:inherit; text-decoration:none; }

.kpi-card:hover{
  transform:translateY(-2px) scale(1.030);
  box-shadow:0 14px 28px rgba(0,0,0,.22);
  filter:brightness(1.03);
}
.kpi-card:focus-visible{ outline:3px solid #fff; outline-offset:3px; }

.kpi-card .num{ font-weight:600; font-size:clamp(20px,2.4vw,32px); line-height:1.05; }
.kpi-card .legenda{ margin-top:6px; font-weight:500; font-size:clamp(10px,.95vw,13px); letter-spacing:.4px; text-transform:uppercase; }
.m2 sup{ font-size:.6em; }

/* responsivo */
@media (max-width:1100px){ .cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){
  .faixa-60vh{ height:auto; }
  .cards{ grid-template-columns:1fr; }
  .kpi-card{ min-height:110px; }
}








/* Estrutura geral */
section.bloco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 100px 5%;
  background-color: #fff;
  max-width: 1400px; /* largura máxima */
  margin: 0 auto; /* centraliza toda a seção na página */
}

/* Alterna lados (imagem ↔ texto) */
section.bloco.invertido {
  flex-direction: row-reverse;
}

/* Colunas iguais */
.bloco .coluna {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Texto */
.bloco .coluna.texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.bloco .coluna.texto p {
  font-family: 'Montserrat', sans-serif;
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Imagem */
.bloco .coluna.imagem {
  display: flex;
  justify-content: center;
}

.bloco .coluna.imagem img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bloco .coluna.imagem img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Responsividade */
@media (max-width: 900px) {
  section.bloco,
  section.bloco.invertido {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 5%;
  }

  .bloco .coluna.imagem img {
    max-width: 100%;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Inter:wght@400;500&display=swap');

.realizacoes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1300px;
  margin: 80px auto;
}

.realizacoes-carousel {
  width: 52%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.realizacoes-carousel img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.realizacoes-texto {
  width: 42%;
}

.realizacoes-texto h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 550;
  color: #111;
  margin-bottom: 20px;
}

.realizacoes-texto p {
  font-family: 'Inter', sans-serif;
  font-size: 1.04rem;
  color: #333;
  line-height: 1.75;
  text-align: justify;
}

/* Responsivo */
@media (max-width: 992px) {
  .realizacoes-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .realizacoes-carousel,
  .realizacoes-texto {
    width: 100%;
  }

  .realizacoes-carousel img {
    height: 250px;
  }

  .realizacoes-texto p {
    text-align: center;
  }
}







/* Seção de texto centralizado */
.texto-central {
  background-color: #fff;
  text-align: center;
  padding: 50px 5%;
  max-width: 900px;
  margin: 0 auto;
}

/* Título */
.texto-central h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Parágrafos */
.texto-central p {
  font-family: 'Montserrat', sans-serif;
  color: #444;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 900px) {
  .texto-central {
    padding: 80px 5%;
  }

  .texto-central h2 {
    font-size: 2rem;
  }

  .texto-central p {
    font-size: 1rem;
  }
}





/* Faixa de destaque */
.faixa-destaque {

  color: #fff;
  text-align: center;
  padding: 200px 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Conteúdo centralizado */
.faixa-destaque .conteudo {
  max-width: 500px;
  
}

/* Ícone dourado */
.faixa-destaque .icone span {
  display: inline-block;
  background: radial-gradient(circle, #ff0000 0%, #ff0000 100%);
  color: #000000;
  font-size: 1.6rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

/* Título */
.faixa-destaque h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #fff;
  
  margin-bottom: 20px;
}

/* Texto */
.faixa-destaque p {
  font-family: 'Montserrat', sans-serif;
  color: #000000;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .faixa-destaque {
    padding: 70px 5%;
  }

  .faixa-destaque .icone span {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    line-height: 50px;
  }

  .faixa-destaque h2 {
    font-size: 1.6rem;
  }

  .faixa-destaque p {
    font-size: 1rem;
  }
}














.nacional-internacional {
  padding: 80px 0;
  background-color: #fff;
}

.nacional-internacional .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: nowrap;
}

.nacional-internacional .coluna {
  flex: 1;
  text-align: center;
}

.nacional-internacional .img-secao {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.nacional-internacional .img-secao:hover {
  transform: scale(1.03);
}

.nacional-internacional h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111;
}

.nacional-internacional p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 500px;
  margin: 0 auto;
}

/* Responsivo */
@media (max-width: 992px) {
  .nacional-internacional .container {
    flex-direction: column;
    gap: 60px;
  }

  .nacional-internacional .coluna {
    text-align: center;
  }

  .nacional-internacional .img-secao {
    height: 260px;
  }
}





























/* Estilos do carrossel */
.container-clientes {
    width: 100%;
    overflow: hidden; /* Esconde o conteúdo que ultrapassa o container */

}

.logos {
    display: flex;
    width: 300%; /* Duplicamos a largura para acomodar a lista clonada */
    animation: carrossel 180s linear infinite; /* Animação que move os logos */
}

.ul-clientes {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1; /* Cada ul ocupa metade da largura total */
    gap: px;

}

.clientes-li {
    margin-right: 1px; /* Espaçamento entre os logos */
}

.clientes-li img {
    max-width: 680px; /* Ajuste o tamanho dos logos conforme necessário */
    max-height: 380px; /* Ajuste a altura conforme necessário */
}

/* Animação do carrossel - movimento linear */
@keyframes carrossel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-200%); /* Move os logos para a esquerda até o meio */
    }
}

@media (max-width: 768px) {
    @keyframes carrossel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-900%); /* Move os logos para a esquerda até o meio */
        }
    }

    .clientes-li img {
        max-width: 150px; /* Ajuste o tamanho dos logos conforme necessário */
        max-height: 150px; /* Ajuste a altura conforme necessário */
    }
    .ul-clientes {

        gap: 1px;
    }
}




















:root{
  --bg: #f7f8fa;          /* cinza bem claro */
  --panel: #ffffff;       /* branco cartões */
  --text: #202124;        /* preto suave */
  --muted: #6b7280;       /* cinza médio */
  --line: #e5e7eb;        /* divisória */
  --accent: #e10600;      /* vermelho DM */
}

.footer.light{
  background: var(--bg);
  color: var(--text);
  padding: 56px 5% 28px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Linha superior centralizada */
  border-top: none; /* remove a antiga linha total */
  position: relative;
}

.footer.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 2600px);     /* controla comprimento da linha */
  height: 1px;                /* espessura */
  background: var(--accent);  /* vermelho DM */
  border-radius: 1px;
}


.footer-container{
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 28px 36px;
}

.footer-column{
  background: var(--panel);
background-color: #00000000;
}

.footer-column h3{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(225,6,0,.15);          /* sublinhado vermelho suave */
}

.footer-column ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li{
  margin: 8px 0;
  font-size: 15px;
  color: var(--muted);
}

.footer-column a{
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.footer-column a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .25s ease;
}
.footer-column a:hover::after{ width:100%; }
.footer-column a:hover{ color: var(--accent); }

.footer-column p{
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0;
}

.footer-logo{
  display:flex;
  justify-content:center;
  margin: 17px 0 14px;
}
.footer-logo img{
  width: 120px;      /* ajusta se quiser maior/menor */
  height:auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.08));
  transition: transform .25s ease;
}
.footer-logo img:hover{ transform: scale(1.03); }

.footer-bottom {
  display: flex;                     /* coloca lado a lado */
  justify-content: center;           /* centraliza o conjunto no meio */
  align-items: center;
  gap: 8px;                          /* espaçamento entre logo e texto */
  color: var(--muted);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  width: min(60%, 900px);            /* mantém linha curta e centralizada */
  margin: 40px auto 0;
  border-radius: 2px;
}

.footer-bottom img {
  width: 100px;                       /* ajusta o tamanho da logo */
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.1));
  margin-right: 6px;
}

.footer-bottom p{
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 1200px){
  .footer-container{ grid-template-columns: repeat(3, minmax(160px, 1fr)); }
}
@media (max-width: 768px){
  .footer-container{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-container{ grid-template-columns: 1fr; }
  .footer{ padding-left: 4%; padding-right: 4%; }
}

.footer-column ul.duas-colunas {
  columns: 2;            /* define duas colunas */
  column-gap: 12px;      /* diminui o espaçamento entre elas */
  text-align: left;
}

.footer-column ul.duas-colunas li {
  break-inside: avoid;   /* evita quebra feia entre colunas */
  margin: 0px 0 10px 0px;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  margin: 6px 0;
}

.social-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;                   /* espaço entre ícone e texto */
  transition: color 0.25s ease;
}

.social-list a i {
  color: var(--accent);       /* vermelho DM */
  font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-list a:hover {
  color: var(--accent);
}

.social-list a:hover i {
  transform: scale(1.15);
}


.footer-column a::after { display: none; }
